home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d12 / csr_001.arc / COLOR.H < prev    next >
Text File  |  1988-09-02  |  1KB  |  48 lines

  1. /*
  2. **  C O L O R . H
  3. **
  4. **  Color definitions file for the C Spot Run C Add-On Library.
  5. **
  6. **  Copyright 1986 Bob Pritchett.
  7. **
  8. **  Created:   /  /85   Last Updated: 09/20/86
  9. **
  10. */
  11.  
  12. #ifndef CSRCOLOR                /* Avoid Double Inclusion */
  13.  
  14. #define BLK_F        0            /* Black */
  15. #define BLU_F        1            /* Blue */
  16. #define GRN_F        2            /* Green */
  17. #define CYN_F        3            /* Cyan */
  18. #define RED_F        4            /* Red */
  19. #define MAG_F        5            /* Magenta */
  20. #define BRN_F        6            /* Brown */
  21. #define LGRY_F        7            /* Light Gray */
  22. #define GRY_F        8            /* Gray */
  23. #define LBLU_F        9            /* Light Blue */
  24. #define LGRN_F        10            /* Light Green */
  25. #define LCYN_F        11            /* Light Cyan */
  26. #define LRED_F        12            /* Light Red */
  27. #define LMAG_F        13            /* Light Magenta */
  28. #define YEL_F        14            /* Yellow */
  29. #define WHT_F        15            /* White */
  30.  
  31. #define BLK_B        0            /* Black */
  32. #define BLU_B        16            /* Blue */
  33. #define GRN_B        32            /* Green */
  34. #define CYN_B        48            /* Cyan */
  35. #define RED_B        64            /* Red */
  36. #define MAG_B        80            /* Magenta */
  37. #define BRN_B        96            /* Brown */
  38. #define WHT_B        112            /* White */
  39.  
  40. #define BLINK        128            /* Blink */
  41. #define BOLD        8            /* Bold */
  42. #define UNDERLINE    1            /* Underline (Mono) */
  43. #define REVERSE        112            /* Reverse Video */
  44. #define NORMAL        7            /* Black and White */
  45.  
  46. #define CSRCOLOR    1
  47. #endif
  48.